home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Games of Daze
/
Infomagic - Games of Daze (Summer 1995) (Disc 1 of 2).iso
/
x2ftp
/
msdos
/
fg
/
fgl402e
/
expas.arj
/
TEMP
/
15-01.PAS
< prev
next >
Wrap
Pascal/Delphi Source File
|
1995-01-20
|
535b
|
32 lines
program main;
uses fgmain, fgmisc;
var
freq : integer;
begin
fg_initpm;
writeln('20 Hz tone...');
fg_sound(20,3);
fg_waitfor(18);
writeln('100 Hz tone...');
fg_sound(100,3);
fg_waitfor(18);
writeln('1000 Hz tone...');
fg_sound(1000,3);
fg_waitfor(18);
writeln('warble...');
fg_sound(400,1);
fg_sound(410,1);
fg_sound(400,1);
fg_sound(410,1);
fg_waitfor(18);
writeln('sliding tone from 100 to 500 Hz...');
for freq := 10 to 50 do
fg_sound(freq*10,2);
end.